/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/* * Remove text-shadow in selection highlight: * https://twitter.com/miketaylr/status/12228805301 * * Vendor-prefixed and regular ::selection selectors cannot be combined: * https://stackoverflow.com/a/16982510/7133471 * * Customize the background color to match your design. */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600");
.section-padding
{
    padding: 100px 0;
    background-color: #ccc;
}

@media only screen and (max-width: 991px)
{
    .section-padding
    {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 1199px)
{
    .header
    {
        text-align: Center;
    }
}

@media only screen and (max-width: 767px)
{
    .section-padding
    {
        padding: 60px 0;
    }
}

body
{
    font-family: 'Poppins' , sans-serif;
    font-size: 14px;
}

::-moz-selection
{
    background: #b3d4fc;
    text-shadow: none;
}

::selection
{
    background: #b3d4fc;
    text-shadow: none;
}

span, a, a:hover
{
    color: inherit;
    display: inline-block;
    text-decoration: none;
}

/* * A better looking default horizontal rule */
hr
{
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/* * Remove the gap between audio, canvas, iframes, * images, videos and the bottom of their containers: * https://github.com/h5bp/html5-boilerplate/issues/440 */
audio, canvas, iframe, img, svg, video
{
    vertical-align: middle;
}

/* * Remove default fieldset styles. */
fieldset
{
    border: 0;
    margin: 0;
    padding: 0;
}

/* * Allow only vertical resizing of textareas. */
textarea
{
    resize: vertical;
}

p
{
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.mr10
{
    margin-right: 10px;
}

ul, ol
{
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6
{
    margin: 0;
    padding: 0;
    font-weight: 600;
    color: #333;
    font-family: "Poppins" , sans-serif !important;
}

img
{
    max-width: 100%;
    height: auto;
}

.mb-20
{
    margin-bottom: 20px !important;
}

/* Section Title */
.section-title
{
    margin-bottom: 60px;
    text-align: left;
    position: relative;
    padding-left: 32px;
}

.section-title::before, .section-title::after
{
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    left: 0;
    background: #208ac6;
}

.section-title::after
{
    left: 10px;
}

.section-title h3
{
    font-size: 18px;
    color: #777777;
    text-transform: capitalize;
    font-weight: 300;
}

.section-title h2
{
    font-size: 32px;
    margin: 10px 0 0;
    font-weight: 600;
}

.section-title h2 span
{
    color: #208ac6;
}

.header-top
{
    background-color: #FF00FF;
    overflow: hidden;
}

.header-top .up-menu
{
    margin: 0;
    padding: 0;
}

.header-top .up-menu li
{
    display: inline-block;
}

.header-top .up-menu li a
{
    display: block;
    padding: 5px 0;
    padding-right: 35px;
    font-size: 12px;
    text-transform: uppercase;
    -webkit-transition: .3s all;
    transition: .3s all;
    color: #000;
}

.header-top .up-menu li a:hover
{
    color: #0056b3;
}

.header-top .social
{
    margin: 5px auto;
    padding: 0;
    list-style: none;
    text-align: right;
}

.header-top .social li
{
    display: inline-block;
}

.header-top .social li a
{
    display: block;
    padding: 5px;
    padding-right: 5px;
    text-decoration: none;
    color: #000;
}

.header-top .social li a:hover
{
    color: #0056b3;
}

.header
{
    background: #f9fcf7;
    padding: 10px 0 35px;
    background: -webkit-gradient(linear, left top, left bottom, from(#f9fcf7), to(#f5f9f0));
    background: linear-gradient(to bottom, #f8f8f8 0%, #f8f8f8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5a6877', endColorstr='#5a6877', GradientType=0);
    -webkit-box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.1);
    color: #000;
}

.header .logo
{
    margin: 15px auto;
    display: inline-block;
}

.header .logo img
{
    margin: 0 auto;
}

.header .contact-info
{
    padding: 5px 0;
    display: table;
}

.header .contact-info .text, .header .contact-info .icon
{
    display: table-cell;
    vertical-align: middle;
}

.header .contact-info .icon
{
    font-size: 30px;
    padding-right: 15px;
}

.header .contact-info .text-main-color
{
    color: #000;
}

.header .contact-info .font-weight-500
{
    font-weight: 500;
}

.header .contact-info span.title-in
{
    font-size: 13px;
}

.menubar .navbar.sticky .navbar-collapse .navbar-nav li:hover .dropdown
{
    z-index: 9;
}

.menubar .navbar.sticky .navbar-collapse .navbar-nav li .dropdown
{
    z-index: -1;
}

.menubar .navbar.sticky .navbar-collapse .navbar-nav li .cart::before
{
    top: 12px;
    font-size: 10px;
}

.menubar .navbar.sticky .navbar-collapse .navbar-nav li .text
{
    top: 10px;
}

.menubar .navbar .navbar-collapse
{
    padding: 0;
}

.menubar .navbar .navbar-collapse .navbar-nav
{
    margin: 0 30px;
}

.menubar .navbar .navbar-collapse .navbar-nav li
{
    position: relative;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-right:15px;
}

@media (min-width: 992px) and (max-width: 1199px)
{
    .menubar .navbar .navbar-collapse .navbar-nav li
    {
        margin-right: 25px;
    }
}

.menubar .navbar .navbar-collapse .navbar-nav li:last-child
{
    margin-right: 0;
}

.menubar .navbar .navbar-collapse .navbar-nav li img
{
    margin-right: 8px;
}

.menubar .navbar .navbar-collapse .navbar-nav li a, .menubar .navbar .navbar-collapse .navbar-nav li .search-view, .menubar .navbar .navbar-collapse .navbar-nav li .cart-icon
{
    color: #FF0000;
    padding: 0;
    line-height: 55px;
}

.menubar .navbar .navbar-collapse .navbar-nav li a:hover, .menubar .navbar .navbar-collapse .navbar-nav li .search-view:hover, .menubar .navbar .navbar-collapse .navbar-nav li .cart-icon:hover
{
    color: #313131;
    background-color: transparent;
}

.menubar .navbar .navbar-collapse .navbar-nav li .cart-icon i
{
    color: #222222;
}

.menubar .navbar .navbar-collapse .navbar-nav li .cart-icon i:hover
{
    color: #48c7ec;
}

.menubar .navbar .navbar-collapse .navbar-nav li .search-view
{
    cursor: pointer;
}

.menubar .navbar .navbar-collapse .navbar-nav li.active a
{
    color: #313131;
    background-color: transparent;
}

.menubar .navbar .navbar-collapse .navbar-nav li.dropdown:hover .dropdown-menu
{
    top: 55px;
    visibility: visible;
    opacity: 1;
    z-index: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition-delay: 0s, 0s, 0.3s;
    transition-delay: 0s, 0s, 0.3s;
}

.menubar .navbar .navbar-collapse .navbar-nav li .dropdown-menu
{
    top: 55px;
    left: -25px;
    min-width: 200px;
    background-color: #FFFFFF;
    padding: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    border: 0;
    -webkit-transform: translateY(-2em);
    transform: translateY(-2em);
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.menubar .navbar .navbar-collapse .navbar-nav li .dropdown-menu li
{
    position: relative;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(97, 109, 126, 0.12);
    margin: 0;
    padding: 0 15px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.menubar .navbar .navbar-collapse .navbar-nav li .dropdown-menu li.active a
{
    background-color: #48c7ec !important;
}

.menubar .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:hover
{
    border-bottom: 1px solid transparent;
    background-color: #48c7ec !important;
    color: #fff;
}

.menubar .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:last-child
{
    border-bottom: 0;
}

.menubar .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:last-child::before
{
    display: none;
}

.menubar .navbar .navbar-collapse .navbar-nav li .dropdown-menu li a
{
    color: #616d7e !important;
    line-height: 45px;
    font-weight: 500;
}

.menubar .navbar .navbar-collapse .navbar-nav li .dropdown-menu li a:hover
{
    color: #fff !important;
}

.menubar .navbar .navbar-collapse .navbar-nav li .dropdown-menu li:hover .sub-dropdown
{
    opacity: 1;
    right: -136%;
}

.menubar .navbar .navbar-collapse .navbar-nav li .dropdown-menu .sub-dropdown
{
    position: absolute;
    top: 0;
    right: -120%;
    width: 180px;
    background-color: #FFFFFF;
    opacity: 0;
    padding: 10px 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box h1
{
    font-size: 55px;
    font-weight: 600;
    line-height: 62px;
    color: #FFFFFF;
    margin: 14px 0 27px;
}

.slider-section
{
    position: relative;
}

.slider-section .menubar
{
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    position: absolute;
    top: 10px;
    left: 50%;
}

.slider-section .menubar.affix
{
    position: fixed;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    left: 0;
    top: 0;
    width: 100%;
}

.slider-section .menubar.affix .navbar
{
    border-radius: 0;
}

.navbar
{
    background-color: #208ac6;
    border-color: #208ac6;
}

.navbar-inverse .navbar-nav > li > a
{
    color: #fff;
    opacity: .8;
}

.navbar-inverse .navbar-nav > li > a:hover
{
    opacity: 1;
    color: #fff;
}

@media (min-width: 992px) and (max-width: 1199px)
{
    .wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box h1
    {
        font-size: 40px;
        line-height: 60px;
    }
}

@media only screen and (max-width: 991px)
{
    .wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box h1
    {
        font-size: 30px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 767px)
{
    .wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box h1
    {
        font-size: 25px;
        line-height: 40px;
        margin: 0 0 9px;
    }
    .header-top .social
    {
        text-align: center;
    }
    .header .col-sm-4
    {
        float: none;
        display: inline-block;
    }
    .header
    {
        text-align: center;
    }
    .social
    {
        background-color: #fff;
    }
}

.wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box p
{
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #FFFFFF;
}

@media (min-width: 992px) and (max-width: 1199px)
{
    .wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box p
    {
        font-size: 18px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 991px)
{
    .wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box p
    {
        font-size: 16px;
        line-height: 27px;
    }
}

@media only screen and (max-width: 767px)
{
    .wrapper .slider-section .tp-banner-container .tp-banner .slide-content-box p
    {
        font-size: 14px;
        line-height: 24px;
        word-break: break-all;
        margin: 0 0 10px;
    }
}

.wrapper .slider-section .tp-banner-container .tp-banner .button
{
    margin-top: 53px;
}

@media only screen and (max-width: 767px)
{
    .wrapper .slider-section .tp-banner-container .tp-banner .button
    {
        margin-top: 40px;
    }
}

.wrapper .slider-section .tp-banner-container .tp-banner .button .btn
{
    border-radius: 0;
}

.wrapper .slider-section .tp-banner-container .tp-banner .button .btn::before
{
    border-radius: 0;
}

.wrapper .slider-content
{
    position: absolute;
    right: 0;
    text-align: left;
    top: 50%;
    z-index: 3;
    left: 0;
    margin: 0 auto;
    margin-top: -170px;
}

.wrapper .layer-1-2
{
    margin: 20px 0;
}

.wrapper .layer-1-1 p
{
    color: #fff;
    font-size: 19px;
    letter-spacing: 0.60px;
    line-height: 30px;
    max-width: 700px;
}

.wrapper .layer-1-2 h1
{
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-transform: uppercase;
    max-width: 880px;
    letter-spacing: 2px;
}

.wrapper .slider-content .align-center
{
    text-align: center;
}

.wrapper .slider-content .align-center h1
{
    max-width: 100%;
    padding: 0 100px;
}

.wrapper .slider-content .align-center p
{
    max-width: 100%;
    padding: 0 130px;
}

.wrapper .ped-btn
{
    border: 1px solid #f1f1f1;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-top: 20px;
    padding: 12px 10px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 222;
    background: #f1f1f1;
    width: 175px;
    border-radius: 3px;
}

.wrapper .ped-btn:hover
{
    color: #fff;
    background: #000;
    border: 1px solid #000;
    text-decoration: none;
}

.wrapper .ped-btn.right-btn
{
    margin-left: 15px;
    background: #000;
    border: 1px solid #000;
    color: #fff;
}

.wrapper .ped-btn.right-btn:hover
{
    background: #000;
    border: 1px solid #000;
}

.wrapper .ped-btn.left-btn:hover
{
    background: #252525;
    border: 1px solid #252525;
}

.wrapper .layer-1-2 .color
{
    color: #000;
    font-weight: 900;
}

.wrapper .intro-carousel .owl-nav .owl-prev, .wrapper .intro-carousel .owl-nav .owl-next
{
    color: #fff;
    font-size: 18px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    text-align: center;
    line-height: 39px;
    opacity: 0;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 2px;
}

.wrapper .intro-carousel .owl-nav .owl-prev
{
    left: 10%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
}

.wrapper .intro-carousel .owl-nav .owl-next
{
    right: 10%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
}

.wrapper .intro-carousel:hover .owl-nav .owl-next
{
    right: 2%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    opacity: 1;
}

.wrapper .intro-carousel:hover .owl-nav .owl-prev
{
    left: 2%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    opacity: 1;
}

.wrapper .intro-carousel:hover .owl-nav .owl-next:hover, .wrapper .intro-carousel:hover .owl-nav .owl-prev:hover
{
    color: #fff;
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
}

.wrapper .intro-carousel .owl-item .layer-1-2
{
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    -webkit-transition: all 1s ease-in-out 0.3s;
    transition: all 1s ease-in-out 0.3s;
}

.wrapper .intro-carousel .owl-item .layer-1-1
{
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    -webkit-transition: all 1s ease-in-out 1s;
    transition: all 1s ease-in-out 1s;
}

.wrapper .intro-carousel .owl-item .layer-1-3
{
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    -webkit-transition: all 1s ease-in-out 1.5s;
    transition: all 1s ease-in-out 1.5s;
}

.wrapper .intro-carousel .owl-item.active .layer-1-2, .wrapper .intro-carousel .owl-item.active .layer-1-1, .wrapper .intro-carousel .owl-item.active .layer-1-3
{
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.wrapper .intro-carousel .owl-item.active .slider-images img
{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 10s;
    transition: 10s;
}

@media (min-width: 768px) and (max-width: 991px)
{
    .wrapper .slider-content
    {
        margin-top: -90px;
    }
    .wrapper .layer-1-2 h1
    {
        font-size: 26px;
        line-height: 32px;
        max-width: 550px;
    }
    .wrapper .layer-1-1 p
    {
        font-size: 17px;
        line-height: 24px;
        max-width: 570px;
    }
}

@media (max-width: 767px)
{
    .wrapper .slider-content
    {
        margin-top: -90px;
    }
    .wrapper .slider-3 .slider-content
    {
        margin-top: -50px;
    }
    .wrapper .layer-1-2
    {
        margin: 5px 0;
    }
    .wrapper .layer-1-2 h1
    {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 10px;
        letter-spacing: 0px;
        padding: 0 !important;
    }
    .wrapper .layer-1-1 p
    {
        font-size: 13px;
        letter-spacing: 0px;
        line-height: 20px;
        padding: 0 !important;
    }
}

@media (max-width: 450px)
{
    .wrapper .layer-1-3
    {
        display: none;
    }
    .wrapper .slider-content
    {
        margin-top: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.slider-images::after
{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: .5;
    z-index: 1;
    top: 0;
    left: 0;
}

.intro-carousel .owl-dots
{
    position: absolute;
    left: 0;
    bottom: 15px;
    z-index: 9999;
    text-align: center;
    width: 100%;
}

.intro-carousel .owl-dots .owl-dot
{
    background: #ddd;
    border-radius: 0;
    height: 3px;
    margin: 0 7px;
    width: 30px;
    -webkit-transition: .3s all;
    transition: .3s all;
    display: inline-block;
}

.intro-carousel .owl-dots .owl-dot.active, .intro-carousel .owl-dots .owl-dot:hover
{
    background-color: #208ac6;
}

.about-section .about-features
{
    margin-top: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.about-section .about-features .pull-left
{
    margin-right: 40px;
}

.about-section .about-features ul li
{
    color: #777777;
    margin-top: 10px;
}

.about-section .about-features ul li:first-child
{
    margin-top: 0;
}

.about-section .about-features ul li i
{
    margin-right: 3px;
    color: #208ac6;
}

.about-section .about-text .blockquote
{
    margin-bottom: 20px;
    margin-top: 10px;
}

.about-section .about-text .blockquote p
{
    margin-bottom: 13px;
}

.about-section .about-image
{
    margin-top: 10px;
}

.about-section .about-image
{
    margin: 0;
    position: relative;
    overflow: hidden;
}

.about-section .about-image::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .85;
    background: #208ac666;
    z-index: 1;
}

.about-section .video-btn
{
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    text-align: center;
    margin-top: -20px;
    z-index: 2;
}

.about-section .video-btn a
{
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 72px;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 30px;
}

.about-section .about-image img
{
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .4s;
    transition: .4s;
}

.about-section .about-image:hover img
{
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.btn-primary
{
    color: #fff;
}

.btn
{
    padding: 12px 33px;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 0;
    -webkit-transition: .3s all;
    transition: .3s all;
    margin-bottom: 10px;
margin-left: 15px;
}

.btn-primary.focus, .btn-primary:focus
{
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.btn-primary:hover, .btn-primary:focus
{
    background-color: #fff;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle
{
    color: #fff;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus
{
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.btn-primary
{
    background-color: #FF0000;
    border-color: #208ac6;
}

.btn-primary:hover, .btn-primary:focus
{
    color: #208ac6;
    border-color: #208ac6;
}

.facilities-section
{
    background: #f7f7f7;
    position: relative;
}

.facilities-section .item
{
    -webkit-transition: all .2s linear;
    background-color: #fff;
    -webkit-box-shadow: 0px 20px 40px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0px 20px 40px 0 rgba(0, 0, 0, 0.2);
    padding: 30px 15px;
    transition: all .2s linear;
    margin: 45px 0;
    position: relative;
}

.facilities-section .item span
{
    color: #fff;
    font-family: 'Dosis' , sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 66px;
}

.facilities-section .item h6
{
    margin-bottom: 15px;
    font-size: 20px;
}

.facilities-section .item .back-circle
{
    background-color: #ffffff;
    border-radius: 100px;
    border: 1px solid #ebebeb;
    height: 80px;
    left: 50%;
    margin: 0 auto 0 -37.5px;
    position: absolute;
    text-align: center;
    text-shadow: none;
    top: -41px;
    width: 80px;
}

.facilities-section .item .back-circle .front-circle
{
    -webkit-transition: all .2s linear;
    background: #0495d6;
    border-radius: 500px;
    height: 66px;
    left: 6px;
    position: absolute;
    top: 6px;
    width: 66px;
    padding:10px;
}

.facilities-section .item .cont
{
    padding-top: 30px;
}

.facilities-section .item:hover
{
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
}

.facilities-section .item:hover .more
{
    color: #0495d6 !important;
    padding-left: 10px;
    padding-right: 10px;
}

.facilities-section .item .more
{
    border-bottom: 1px solid;
    color: #0495d6;
    display: inline-block;
    padding: 5px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.footer-section
{
    background-color: #0d2538;
    color: #b0c3d2;
    padding-bottom: 0px;
}

.footer-section .footer-title
{
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #00FF00;
    font-weight: 700;
}

@media (max-width: 767px)
{
    .footer-section .footer-title
    {
        margin-bottom: 15px;
    }
}

.footer-section a
{
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    -webkit-transition: .3s all;
    transition: .3s all;
    font-weight: 300;
}

.footer-section .widget a:hover
{
    color: #ffffff;
}

.footer-section .widget
{
    margin-bottom: 30px;
}

.footer-section .widget.contact-widget a i
{
    padding-right: 10px;
}

.footer-section .widget.links-widget ul
{
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.footer-section .widget.links-widget ul li
{
    width: 50%;
    float: left;
    margin-bottom: 5px;
}

.footer-section .widget.post-widget ul
{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section .widget.links-widget ul li a i
{
    padding-right: 5px;
}

.footer-section .widget.post-widget ul span
{
    margin-bottom: 15px;
    display: block;
}

.copyright-area p
{
    border-top: 1px solid #b0c3d2;
    padding: 20px 0;
    margin: 0;
}

.testimonial-section
{
    background-color: #f2f2f2;
}

.testimonial-section .owl-dots
{
    position: relative;
    left: 0;
    bottom: 0px;
    z-index: 9999;
    text-align: center;
    width: 100%;
}

.testimonial-section .owl-dots .owl-dot
{
    background: #222222;
    border-radius: 0;
    height: 3px;
    margin: 0 7px;
    width: 30px;
    -webkit-transition: .3s all;
    transition: .3s all;
    display: inline-block;
}

.testimonial-section .owl-dots .owl-dot.active, .testimonial-section .owl-dots .owl-dot:hover
{
    background-color: #208ac6;
}

.testimonial-section .testimonials
{
    background-color: #fff;
    padding: 50px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 36px -13px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 36px -13px rgba(0, 0, 0, 0.08);
    margin-bottom: 45px;
}

.testimonial-section .testimonials .icon
{
    width: 26px;
    height: 20px;
    margin: auto;
    background-image: url(../images/testimonials-icon.png);
}

.testimonial-section .testimonials .text
{
    padding: 25px 0px;
    font-size: 13px;
}

.testimonial-section .testimonials .meta .testimonials-thum
{
    margin-bottom: 10px;
}

.testimonial-section .testimonials .meta .testimonials-thum img
{
    border-radius: 50px;
    max-width: 100%;
    width: auto;
    display: inline-block;
}

.testimonial-section .testimonials .meta .name
{
    font-weight: 500;
}

.counter-section
{
    position: relative;
    background: url(../images/bg-counter.jpg) no-repeat center top;
    background-attachment: fixed;
    overflow: hidden;
    z-index: 0;
    color: #fff;
}

.counter-section .item
{
    background-color: transparent;
    padding: 29px 26px;
    margin: 15px 0;
    border-radius: 8px;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    z-index: 0;
}

.counter-section .item:hover
{
    color: #fff;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    clear: both;
    z-index: 999;
    overflow: hidden;
    background-color: #00bad0;
    -webkit-box-shadow: 0 4px 32px -3px #00bad0;
    box-shadow: 0 4px 32px -3px #00bad0;
}

.counter-section::after
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    opacity: .8;
}

.counter-section h3
{
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.counter-section h6
{
    font-weight: 300;
    color: #fff;
    font-size: 18px;
}

.photos
{
    padding: 50px 0;
        background-color: #e0e0e0;
}

.gallery
{
    overflow: hidden;
    margin-top: 20px;
    position: relative;
    margin-left: 5px;
}

.gallery a
{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
    -webkit-transition: .3s all ease;
    transition: .3s all ease;
}

.gallery:hover a
{
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.gallery a i
{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.gallery img
{
    -webkit-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.gallery:hover img
{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.gallery-slider .owl-nav .owl-prev, .video-slider .owl-nav .owl-prev, .gallery-slider .owl-nav .owl-next, .video-slider .owl-nav .owl-next
{
    background: #208ac6;
    color: #fff;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
    z-index: 3;
    position: absolute;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
}

.gallery-slider .owl-nav .owl-prev, .video-slider .owl-nav .owl-prev
{
    left: 0;
    margin-left: 0;
    opacity: 1;
}

.gallery-slider .owl-nav .owl-next, .video-slider .owl-nav .owl-next
{
    right: 0;
    margin-right: 0;
    opacity: 1;
}

.page-contact
{
    position: relative;
    border-bottom: 1px solid #eee;
}

.form input, .form textarea
{
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 15px;
    width: 100%;
}

.form input:focus, .form textarea:focus
{
    border-color: #ddd;
}

.form textarea
{
    height: 160px;
    max-height: 160px;
    max-width: 100%;
}

.form .form-group
{
    position: relative;
}

.form .help-block li
{
    color: #ce7373;
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    right: 15px;
    top: 15px;
}

.butn
{
    background: #fff;
    border-radius: 30px;
    border: 1px solid transparent;
    -webkit-box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-left: 10px;
    margin-right: 10px;
    outline: none !important;
    overflow: hidden;
    padding: 12px 30px;
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
    z-index: 3;
}

.butn span
{
    position: relative;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    z-index: 2;
}

.butn:before, .butn:after
{
    background: #fff;
    content: '';
    height: 100%;
    left: 0;
    opacity: .4;
    position: absolute;
    top: 0;
    -webkit-transition: width 0.4s;
    transition: width 0.4s;
    width: 0;
    z-index: 1;
}

.butn:after
{
    background: #fff;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.butn:hover:before, .butn:hover:after
{
    width: 100%;
}

.butn:hover:after
{
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.butn:hover span
{
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.butn-bg
{
    background: #1ed604;
    border-color: #0495d6;
    color: #fff;
}

.butn-bg:hover span
{
    color: #0495d6;
}

.our-topper
{
    text-align: center;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    padding: 10px;
    -webkit-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

.our-topper .pic
{
    overflow: hidden;
    position: relative;
}

.our-topper .pic img
{
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.our-topper .team-content
{
    padding: 20px;
}

.our-topper .title
{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00bad0;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.our-topper .post
{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #707070;
    text-transform: capitalize;
}

@media only screen and (max-width: 990px)
{
    .our-team
    {
        margin-bottom: 30px;
    }
}

.topper-slider .owl-dots
{
    position: relative;
    left: 0;
    z-index: 9999;
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.topper-slider .owl-dots .owl-dot
{
    background: #ddd;
    border-radius: 0;
    height: 3px;
    margin: 0 7px;
    width: 30px;
    -webkit-transition: .3s all;
    transition: .3s all;
    display: inline-block;
}

.topper-slider .owl-dots .owl-dot.active, .topper-slider .owl-dots .owl-dot:hover
{
    background-color: #208ac6;
}

.marquee
{
    display: block;
    width: 100%;
}

.news-bar
{
    overflow: hidden;
    padding-left: 150px;
    height: 40px;
    position: relative;
    color: #000;
    padding: 10px 0;
    overflow: hidden;
}

.news-bar:after
{
    content: "News Update >";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #394a5c;
    color: #fff;
    height: 100%;
    width: 150px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
}

.news-bar a
{
    color: #000;
    font-size: .9em;
    text-decoration: none;
    display: inline-block;
    margin: 0 5px;
}

.mobile-menu
{
    display: none;
}

@media (max-width: 991px)
{
    .mobile-menu
    {
        display: block;
        padding: 10px 0;
        background-color: #fff;
    }
    .slicknav_brand
    {
        max-width: 60%;
    }
    .slicknav_menu
    {
        background-color: #fff;
    }
    .slicknav_nav
    {
        background-color: #48c7ec;
        overflow: auto;
        max-height: 350px;
    }
    .slicknav_btn
    {
        margin-top: 15px;
        border-radius: 0;
        background-color: transparent;
    }
    .slicknav_menu .slicknav_icon-bar
    {
        background-color: #222;
    }
    .slicknav_nav a
    {
        display: block;
    }
    .slicknav_nav a:hover, .slicknav_nav .slicknav_row:hover
    {
        background: #232323;
        color: #fff;
        border-radius: 0;
    }
    .slicknav_nav .slicknav_row, .slicknav_nav a
    {
        margin-left: 0;
        margin-right: 0;
    }
    .menubar
    {
        display: none;
    }
}

@media (max-width: 450px)
{
    .slicknav_btn
    {
        margin-top: 10px;
    }
}

#back_to_top
{
    display: block;
    height: 40px;
    width: 40px;
    color: #FFFFFF;
    background-color: #208ac6;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    font-size: 20px;
    position: fixed;
    padding-top: 8px;
    bottom: 1500px;
    right: 10px;
    z-index: 99999;
    -webkit-transition: .5s all ease-in-out;
    transition: .5s all ease-in-out;
}

#back_to_top.visible
{
    opacity: 1;
    visibility: visible;
    bottom: 10px;
}

#back_to_top:hover
{
    opacity: .8;
}
/*# sourceMappingURL=style.css.map */


@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700');

.gallery-title
{
    font-size: 36px;
    color: #42B32F;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}

.gallery-title:after
{
    content: "";
    position: absolute;
    width: 7.5%;
    left: 46.5%;
    height: 45px;
    border-bottom: 1px solid #5e5e5e;
}

a.filter-button
{
    color: #999999;
    font: 400 13px/22px 'Montserrat' , sans-serif;
    border-radius: 5px;
    text-align: center;
    color: inherit;
    margin-bottom: 30px;
    text-decoration: none;
    padding: 0 15px;
}

.gallery_product
{
    position: relative;
    overflow: hidden;
}


.port-image
{
    width: 100%;
}



.gal_title
{
    color: #202020;
    font-family: 'Montserrat' , sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 3em;
    position: relative;
    padding-bottom: 20px;
}

.gal_title:after
{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 40px;
    background-color: #dfdfdf;
}

ul.gal_sort
{
    list-style: none;
    margin: 35px auto 5px;
    padding: 0;
}

ul.gal_sort li
{
    display: inline-block;
    color: black;
}

ul.gal_sort li.active a
{
    font-weight: 700;
    color: #202020;
}

.gallery_product
{
    margin-bottom: 30px;
    position: relative;
}

.gal_img img
{
    display: block;
    width: auto;
    height: auto;
    min-width: 100%;
    max-width: 100%;
}

.gal_img
{
    position: relative;
    width: 100%;
    z-index: 2;
    top: 0;
    transition: .3s all ease-in;
}

.gallery_product:hover .gal_img
{
    top: -70px;
}

.gallery_product .details
{
    height: 70px;
    bottom: 0;
    position: relative;
    background-color: #282727;
    position: absolute;
    width: 100%;
    padding: 10px 0 0 10px;
    color: white;
    z-index: 1;
}


.footer-section .widget.links-widget ul li a i
{
    padding-right: 5px;
    position: absolute;
    left: 0;
    top: 3px;
}
.footer-section a
{
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    transition: .3s all;
    font-weight: 300;
    padding-left: 20px;
    position: relative;
}

.navbar {
    background-color: #33FF00;
    border-color: #5a6877;
}